home *** CD-ROM | disk | FTP | other *** search
/ Capcom E3 2004 Press CD ~…pcom Sales CD 2004 (USA) / Capcom E3 2004 Press CD (USA).bin / pc / files / oni3 / new_bar_art.swf / scripts / frame_1 / DoAction.as
Text File  |  2004-04-08  |  305b  |  10 lines

  1. bytes_loaded = Math.round(_root.getBytesLoaded());
  2. bytes_total = Math.round(_root.getBytesTotal());
  3. getPercent = bytes_loaded / bytes_total;
  4. _root.loadBar._width = getPercent * 100;
  5. _root.loadText = Math.round(getPercent * 100) + "%";
  6. if(bytes_loaded == bytes_total)
  7. {
  8.    _root.gotoAndPlay(3);
  9. }
  10.